/**/
* {
  margin: 0;
  padding: 0;
}

div,
address,
b,
big,
blockquote,
body,
center,
cite,
code,
dd,
del,
dl,
dt,
em,
fieldset,
font,
form,
b,
b,
h3,
h4,
h5,
h6,
html,
i,
iframe,
img,
ins,
label,
legend,
li,
ol,
p,
pre,
small,
span,
strong,
u,
ul,
var,
th,
td,
input {
  margin: 0;
  padding: 0;
}

div,
dl,
dt,
dd,
form,
input,
button,
textarea,
p,
ul,
li,
ol,
table,
tr,
td,
header,
footer,
aside,
nav,
b,
b,
h3,
h4,
h5,
h6,
section {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  font-size: 14px;
  font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  color: #333;
  padding: 0px;
  margin: 0px;
}

button:foucs {
  border: none !important;
  outline: none !important;
}

button::-moz-focus-inner {
  border-color: transparent;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

i {
  font-style: normal;
}

a {
  color: #333;
}

a:hover {
  text-decoration: none;
  color: #fff;
}

img {
  border: none;
  vertical-align: middle
}

input {
  outline: none;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
button,
select {

  outline: none;
}

textarea {

  outline: none
}

.clear {
  clear: both;
  height: 0px;
  overflow: hidden;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}

.clearfix {
  /*兼容 IE*/
  zoom: 1;
}

.dot1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dot {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

/*t图片样式*/
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto
}

img {
  border: 0px;
  vertical-align: middle;
}

.img-responsive {
  display: block;
  height: auto;

  max-width: 100%
}

.avatar {
  display: block;
  overflow: hidden;
  width: 100%;
}

.dot {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.dot2 {
  display: -webkit-box;

  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/*--------------------------------------------------------------
# 头部Header
--------------------------------------------------------------*/


#header {

  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  height: 90px;

}

#header.header-transparent {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));
  background-image: -moz-linear-gradient(to bottom, rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));
  background-image: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, .7), rgba(0, 0, 0, 0));

}

#header.header-scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);



}


.top-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-box .logo {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 90px;
}

.top-box .logo img {
  padding: 0;
  margin: 0;
  max-height: 56px;

}

.top-box .logo .logo-tu2 {
  display: none;
}

/*导航菜单 */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu {
  flex: 5;
  height: 90px;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-menu ul li {
  position: relative;
  width: 100%;
  text-align: center;


}

.nav-menu>ul>li::after {
  content: "";
  position: absolute;
  width: 0;

  left: calc(50% - 30px);
  height: 3px;
  background: #0095BE;
  bottom: 12px;
  transition: .5s;
  z-index: 1;
}

.nav-menu>ul>li:hover::after {
  width: 60px;
}

.nav-menu a {
  display: block;

  color: #fff;
  padding: 0 5px;
  height: 90px;
  line-height: 90px;
  transition: 0.3s;
  font-size: 16px;


}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #0095BE;
  text-decoration: none;


}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: 90px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
  padding-bottom: 20px;
}

.nav-menu li:nth-child(3).drop-down ul {
  width: 120%;
  left: -10%;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 90px;
  visibility: visible;
}

.nav-menu .drop-down li {
  width: 100%;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 5px 0;
  font-size: 16px;

  text-transform: none;
  color: #666;
  line-height: 40px;
  height: 40px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color: #0095BE;
  background: none;

}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 90px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu a i {
  display: none;
}

.nav-menu .arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 45%;
  background-color: #fff;
  transform: rotate(45deg);
  cursor: pointer;
  transition: .3s;
  z-index: -1;

}

.nav-menu .mob-language {
  display: none;
}

.mobile-nav .mob-language {
  display: block;
}

#header.header-scrolled .language img {
  filter: none;
}

#header.header-scrolled .nav-menu a {
  color: #333;
}

#header.header-scrolled .language {
  color: #333;
}

#header.header-scrolled .language a {
  color: #333;
}

#header.header-scrolled .language a:hover {
  color: #0095BE;
}

#header.header-scrolled .nav-menu a:hover,
#header.header-scrolled .nav-menu .active>a,
#header.header-scrolled .nav-menu li:hover>a {
  color: #0095BE;


}

#header.header-scrolled .nav-menu .drop-down ul a:hover,
#header.header-scrolled .nav-menu .drop-down ul .active>a,
#header.header-scrolled .nav-menu .drop-down ul li:hover>a {
  color: #0095BE;
  background: none;

}

#header.header-scrolled .top-box .logo .logo-tu1 {
  display: none;
}

#header.header-scrolled .top-box .logo .logo-tu2 {
  display: block !important;
}

/* 手机菜单样式 */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 999;
  overflow-y: auto;
  left: -80%;
  width: 80%;
  padding-top: 18px;
  background: #fff;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #333;
  font-size: 16px;
  margin: 0 20px;
  height: 56px;
  line-height: 56px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #0095BE;
  text-decoration: none;
}

.mobile-nav .drop-down>a i {
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 40px;
  width: 40px;
  text-align: right;
  height: 40px;
  background: #f1f1f1;
  margin-top: 8px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #333;
}



.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down .arrow {
  display: none;
}

.mobile-nav .drop-down li a {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 10px;
  z-index: 998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;

}

.mobile-nav-toggle i {
  color: #666;

  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(51, 51, 51, 0.9);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

.weblink {
  position: relative;
  padding: .2rem 0;
  box-sizing: border-box;
  margin: 0;
}

.weblink>a {
  display: flex;
  color: #fff;
  font-size: 15px;
  font-family: Arial, Arial-Bold;
  font-weight: 700;
}

.weblink>a i {
  margin-left: 5px;
}

.weblink .luanguage {
  box-shadow: 0 0 10px rgb(0, 0, 0, .2);
  position: absolute;
  background: #fff;
  border-radius: 5px;
  padding: .1rem .2rem;
  left: -.2rem;
  text-align: center;
  transform: translateY(35%);
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}

.weblink .luanguage::before {
  content: "";
  width: 20px;
  height: 10px;
  background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: #fff;
  position: absolute;
  left: 50%;
  top: -5%;
  transform: translate(-50%, -50%);
}

.weblink .luanguage a {
  justify-content: center;
  font-size: 14px;
}

.weblink .luanguage a {
  margin: 5px 0;
  display: block;
}

.weblink .luanguage a:hover {
  color: #0095BE;
}

.weblink:hover .luanguage {
  opacity: 1;
  transform: translateY(25%);
  visibility: visible;
}

.tel a {
  height: 90px;
  display: flex;
  align-items: center;
}

.tel a {
  color: #0095BE;
  font-size: 18px;
  font-weight: bold;
}

.tel span {
  font-weight: normal;
  font-size: 14px;
}

.tel a i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0px 0px 21px 0px rgba(18, 22, 24, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}

/*  导航菜单 end */

/*首页banner图 start*/
#banner { position: relative;}
#banner .swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

#banner .swiper-slide {
  position: relative;
  overflow: hidden;

}

#banner .swiper-slide img {
  width: 100%;
  position: relative;

}

#banner .swiper-slide .scalePic {
  display: block;
  width: 100%;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition-property: all;
  transition-duration: 2.5s;
  transition-timing-function: ease;
  transition-delay: .2s;
}

#banner .swiper-slide-active .scalePic {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

#banner .swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  z-index: 999;
  width: 60px;
  font-size: 20px;
  line-height: 60px;
  height: 60px;
  transition: all .5s ease;
  outline: none;


}

#banner .swiper-button:hover {
  background: #0095BE;
}

.btn-prev {
  left: 5%;
}

.btn-prev img,
.btn-next img {
  width: 80%;
}

.btn-next {
  right: 5%;
}



#banner .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 20px;
  left: 0;
  width: 100%;
}

#banner .swiper-slide .container {
  position: absolute;
  left: 0;
  right: 0;
  top: 30%;
  bottom: 0;
  margin: 0 auto;
}

.banner-slide-content {
  position: relative;
  z-index: 9;
}



.banner-slide-content span {
  color: #fff;
  display: block;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.banner-slide-content .title {
  font-size: 40px;
  line-height: 56px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 10px;

  text-transform: capitalize;
}


.banner-slide-content p {

  font-size: 24px;
  font-family: "Poppins", sans-serif;
  color: #fff;


}



#banner_pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 100%;
  margin: 0 15px;
  background: #fff;
  opacity: 0.5;

}

#banner_pagination .swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

#banner_pagination .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  opacity: 1;

  background: rgba(255, 255, 255, 1);
}

#banner_pagination .swiper-pagination-bullet {
  position: relative;
}

#banner_pagination .swiper-pagination-bullet .left {
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  left: -7px;
  margin: auto;
  width: 12px;
  height: 30px;
  opacity: 0;
  overflow: hidden;
}

#banner_pagination .swiper-pagination-bullet .left:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0px;
  z-index: 99;
  margin: auto;
  width: 12px;
  height: 24px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-radius: 20px 0 0 20px;
  border-right: 0;
}

#banner_pagination .swiper-pagination-bullet .right {
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  right: -7px;
  margin: auto;
  width: 15px;
  height: 30px;
  opacity: 0;
  overflow: hidden;

}

#banner_pagination .swiper-pagination-bullet .right:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  margin: auto;
  width: 12px;
  height: 24px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-radius: 0 20px 20px 0;
  border-left: 0;

}

#banner_pagination .swiper-pagination-bullet-active .left {
  opacity: 1;
}

#banner_pagination .swiper-pagination-bullet-active .right {
  opacity: 1;
}

#banner_pagination .swiper-pagination-bullet-active .left:after {
  transform-origin: right center;
  /* animation-iteration-count: infinite; */
  animation-fill-mode: forwards;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-name: gyrateleft;
}

#banner_pagination .swiper-pagination-bullet-active .right:after {
  transform-origin: left center;
  /* animation-iteration-count: infinite; */
  animation-fill-mode: forwards;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-name: gyrateright;

}

@keyframes gyrateright {
  0% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes gyrateleft {
  0% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.banner_txt {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
  color: #333;
  text-align: left;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.banner_txt p {
  font-size: 36px;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: none;
}

.banner_txt b {
  display: block;
  font-size: 42px;
  color: #fff;
  margin: 30px 0;
  text-shadow: none;
}

.banner_txt span {
  color: #fff;
  font-size: 26px;
  display: block;
  text-shadow: none;
}

.banner-more {
  display: block;
  width: 130px;
  letter-spacing: 1px;
  margin-top: 20px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  color: #999;
  border: 1px solid #999;
  border-radius: 38px;
  text-shadow: none;
}

.banner-more:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.banner-more::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  top: -1px;
  margin-left: 7px;
  -webkit-transition: .6s ease;
  transition: .6s ease;
}

.banner-more:hover::after {
  margin-left: 13px;
}


#banner .swiper-slide {
  clip-path: none;
  opacity: 0;
  z-index: 0;
}

#banner .swiper-slide-prev {
  clip-path: polygon(0% -150%, 100% -150%, 100% -20%, 0% 0%);
  opacity: 0;
  transition: clip-path 1400ms cubic-bezier(0.23, 1, 0.32, 1), opacity 1s ease;
  z-index: 3;
}

#banner .swiper-slide-active {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 150%);
  opacity: 1;
  transition: clip-path 1400ms cubic-bezier(0.23, 1, 0.32, 1), opacity 1s ease;
  z-index: 2;
}

#banner .swiper-slide-next {
  z-index: 1;
}

.lr_box {
  display: flex;
  align-items: center;
  justify-content: center;
  width:30%;
  height: 100px;
  position: absolute;

  right: 0;
  top: auto;
  bottom: -.3rem;
  z-index: 11;
  overflow: hidden;
}

.lr_box {

  box-sizing: border-box;
}



.lr_box>div {
  position: relative;
  width: 15%;
  margin-left:30px;
}

.lr_box .swiper-pagination {
  width: auto;
  bottom: auto;
}

.lr_box .swiper-pagination span {
  width: 16px;
  margin: 5px;
  height: 16px;
  border: 1px solid #efefef;
  opacity: 1;
  box-sizing: border-box;
  background: none;
}

.lr_box .swiper-pagination .swiper-pagination-bullet-active {
  background: #efefef;
}

.lr_box .swiper-button-next {
  background: none;
  color: #fff;
  right: 0;
  font-size: 30px;
  padding:0 15px;

  outline: none;
  margin-top: -27px;
}
.lr_box .swiper-button-next:hover { color: #0095BE;}
.lr_box .swiper-button-prev {
  background: none;
  color: #fff;
  left: 0;
  padding:0 15px;
  font-size: 30px;
  outline: none;
  margin-top: -27px;
}
.lr_box .swiper-button-prev:hover { color: #0095BE;}
.indexXian {
  position: absolute;
  left: 8%;
  top: auto;
  z-index: 1;
  bottom: 40px;
  display: flex;
}

.indexXian span {
  font-size: 14px;
  letter-spacing: 4px;
  color: #ffffff;
  margin-right: 12px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  position: relative;
}

.indexXian i {
  width: 2px;
  height: 80px;
  background: #EFEFEF;
  display: block;
  position: relative;
  overflow: hidden;
}

.indexXian i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 100%;
  background: #0095BE;
  opacity: 1;
  animation: aline 3s infinite linear;
}

@keyframes aline {
  from {
    bottom: 100%;
  }

  to {
    bottom: -100%;
  }
}

/*首页banner图 end*/
.pad-100 { padding: 100px 0;}
.pad-80 { padding: 80px 0;}
.pad-30 { padding: 30px 0;}
/* 关于我们 */
.about {
  background-size: cover;
  background: url(../images/abbg.jpg) no-repeat;
  background-size: cover;
}

.about .about_con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}

.about .about_con .le {
  width: 48%;
}

.bg_box {
  position: relative;
  overflow: hidden;
}

.logobg {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  margin-left: auto;
  margin-left: auto;
}

.about .about_con .le .imgBox {
  overflow: hidden;
  border-radius: 30px;
}

.about .about_con .le .imgBox img {
  width: 140%;
  display: block;
  transition: .5s;
  max-height: 450px;
}

.about .about_con .ri {
  width: 48%;
}
.about .about_con .ri em {
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  color: #333;
  display: block;
}
.about .about_con .ri p { margin-top: 30px;}
.main_title em {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  color: #333;
  display: block;
}
.main_title i { font-weight: normal; font-size: 26px; padding: 0 6px;}
.main_title strong {
  font-size: 36px;
  font-weight: 700;
  color: #0095BE;
  display: block;
  margin-bottom: 20px;
}

.about .about_con p {
  font-size: 16px;
  font-weight: 400;
  color: #697277;
  line-height: 32px;
}

.about .about_con .more {
  margin-top: 50px;
  display: block;
}

.about .about_con a {
  background: #0095BE;
  padding: 15px 30px;
}

.about .about_con a span {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-right: 10px;
  transition: .5s;
}

.about .about_con a:hover span {
  margin-right: 20px;
}

.about ul {
  display: flex;

  justify-content: space-between;
  margin-bottom: 80px;
}

.about ul li {
  width: 25%;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
}

.about ul li:nth-child(1) {
  display: block;
}

.about ul li:nth-child(1)::after {
  right: 10%;
}

.about ul li:nth-child(4)::after {
  display: none;
}

.about ul li::after {
  content: "";
  height: 100%;
  width: 1px;
  background: #eeeeee;
  right: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.about ul li .num {
  display: flex;
  align-items: center;
}

.about ul li .counter {
  font-size: 60px;
  font-weight: 500;
  color: #0095BE;

}

.about ul li em {
  font-size: 40px;
  font-weight: 100;
  color: #333333;

  font-style: normal;
}

.about ul li i {
  width: 40px;
  height: 2px;
  background: #0095BE;
  border-radius: 2px;
  display: block;
}

.about ul li .text {
  font-size: 24px;
  font-weight: 400;
  color: #666666;
  margin-left: 1rem;
  margin-top: 10px;
}

.about ul li span {
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  margin-top: 15px;
  display: block;
}

/* 产品 */
.yw {

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:url(../images/prbg.jpg) no-repeat;
  background-size: cover;
  overflow:hidden;
}

.yw ul{
  width:100%;
  padding:0;
  margin:0;
  display: flex;
  align-items: center;
  justify-content: space-between;}
.yw li{position:relative;overflow:hidden;  }

.yw li a{display:block;  }
.yw li a .img_ar { opacity: 0; }
.yw li a:hover .img_ar { opacity: 1;}
.yw .dec_ar em{ font-size:20px; margin:0; padding:0;font-style: normal; display: block; text-align: center; color: #fff; }
.yw .dec_ar p{ margin-top:15px;   }

.yw li .cont_ar{ color:#333;
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  right:0;
  width: 100%;

  transition:all 0.5s; -webkit-transition:all 0.5s;
}

.yw li:hover .cont_ar{ color:#fff;}
.yw li .ar_title{
  width:80%;

  text-align:center;
  position:absolute;
  z-index:1;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transition:opacity 0.5s;-webkit-transition:opacity 0.5s;
}
.yw li .ar_title span{  padding: 20px;
  display: block;
  border: 1px solid #dedede;
  width: 90px;
  height: 90px;
  margin: 15px auto;
  border-radius: 10px;
  background: rgba(255,255,255,.2); }
.yw li .ar_title i{width:50px;height:45px;margin: 0 auto;}

.yw li .ar_title p {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  color: #333;
  height: 54px;
  display: block;
}

.yw li .ar_title b {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  display: block;
  margin-bottom: 20px;
}

.yw li .more{ text-align: center; color: #fff; margin-top: 15px; }
.yw li.cur .cont_ar{  background: rgba(0, 0, 0, .2);cursor: pointer; }
.yw li .cont_ar .main_title strong { color: #333;}
.yw li.cur .cont_ar .main_title em,.yw li.cur .cont_ar .main_title strong{  color: #fff; }
.yw li.cur .ar_title b,.yw li.cur .ar_title p{ color: #fff;}
.yw li.cur  a .img_ar { opacity: 1;}
.yw li.cur .ar_title span img{filter: brightness(400%); }

/* 制造能力
 */

.shili {
  position: relative;

  width: 100%;

  background: url(../images/casebg.jpg) no-repeat;
  background-size: cover;

}


.sjili_info {
  margin-top: 40px;
}

.sjili_info p {
  text-align: center;
  font-size: 16px;
  color: #fff;
  line-height: 32px;
}

#case .swiper-container {
  width: 100%;
  padding-bottom: 30px;
  margin-top: 30px;
}

#case .swiper-slide {
  width: 100%;
  height: 100%;
  background: #fff;

  position: relative;
  transform: scale(0.85);
  margin-top: 60px;
  margin-bottom: 60px;
  -webkit-transition: transform 1.0s;
  transition: transform 1.0s;


}


#case .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

#case .swiper-slide img {
  width: 100%;

  display: block;
  height: 300px;
  border: none;
}

#case .swiper-slide a {
  display: block;
  position: relative;
}

#case .swiper-slide p {
  line-height: 68px;
  padding-top: 0;
  text-align: center;
  color: #000;
  font-size: 20px;
  margin: 0;

  width: 100%;
  background: rgba(255, 255, 255, .5);
  height: 68px;
}

#case .swiper-slide-active {
  border-radius: 2px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 10%);
}




#case .swiper-slide-active, .swiper-slide-duplicate-active {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  z-index: 1002;
}

#case .swiper-pagination-bullet { opacity: 0.7; background: #fff;}
#case .swiper-pagination-bullet-active {
  background: #E8CE1A;
  opacity: 1;
}

/* 工程案例 */
#server-list {
  position: relative;
}
#server-list .swiper-container {
  height: 100%;
 


}

#server-list .swiper-wrapper {
  margin-top: 20px;

}

#server-list .swiper-slide {

  font-size: 18px;
  padding: 40px 0;

}


#server-list .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}

#server-list .swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

#server-list .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: .2;
  margin: 0 5px;
}

#server-list .swiper-pagination-bullet-active {
  opacity: 1;
  background: #0095BE;
}

#server-list .swiper-button-next {
  position: absolute;
  top: 50%;
  right: 0;

  text-align: center;
  color: #fff;
  background: #0095BE;
  cursor: pointer;
  overflow: hidden;
  z-index: 999;
  width: 50px;

  font-size: 40px;
  line-height: 80px;
  height: 80px;
  transition: all .5s ease;
  outline: none;
}

#server-list .swiper-button-prev {
  position: absolute;
  top: 50%;
  left: 0;

  text-align: center;
  color: #fff;
  background: #0095BE;
  cursor: pointer;
  overflow: hidden;
  z-index: 999;
  width: 50px;

  font-size: 40px;
  line-height: 80px;
  height: 80px;
  transition: all .5s ease;
  outline: none;
}

#server-list .swiper-button-prev:hover,
#server-list .swiper-button-next:hover {
  background: #02518C;
  color: #fff;
}

.ser_py {

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 20px 80px;
  position: relative;
  z-index: 3;
  background: #fff;
}
.ser_py_txt { width: 100%;}
 .ser_py_tu {
  width: 40%;
  margin-top: 12px;
}

#server-list .swiper-slide .ser_py_tu img {
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%
}
.ser_py_tu p { line-height: 32px; padding: 15px; text-align: center; color: #333;}
.ser_py_txt span {
  display: block;
  font-size: 20px;
  color: #333;
  line-height: 32px;
  margin-bottom: 30px;
}

.ser_py_txt {

  position: relative;
}

.ser_py_txt .num {
  font-size: 100px;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -50px;
  left: 0;
  z-index: 1;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.ser_py_txt .num a { color: #E5E5E5; z-index: 1;}
.ser_py_txt b{ color: #0095BE; font-size: 20px; display: block; margin-top: 20px;}
.ser_py_txt2 {
  padding: 50px;
}

.ser_py_txt p {
  color: #333;

  font-size: 18px;
  margin: 18px 0;
  line-height: 36px;
  text-align: left;
}

.ser_py_txt p img {
  margin-right: 10px;
}

.ser_py_txt .img-tu {
  margin-top: 40px;
}

.ser_py_txt .img-tu img {
  width: 100%; max-height: 387px;
}
.in_title { font-size: 32px; color: #333;white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/*荣誉*/

#ry {
	position: relative;
  
	margin: 0 auto;
  background: url(../images/honor_bg.jpg) no-repeat;
  background-size: cover;
 
}

#ry .swiper-container {

    margin-top: 50px;
}

#ry .swiper-slide {
	width: 320px;
	
	background: #fff;
	box-shadow: 0 8px 30px #ddd;
	position: relative;

}
#ry .swiper-slide img{
	display:block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
 

}
#ry .swiper-slide a{ display: flex; height: 500px; background: #fff;  align-items: center; justify-content: center; flex-direction: column;}
#ry .swiper-slide p {
	line-height:60px;
	padding-top: 0;
	text-align: center;
	color: #636363;
	font-size: 18px;
	margin: 0;
}
#ry .swiper-slide-active .layer-mask {
    display: none;
}
.layer-mask {
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    background:rgba(255,255,255,.2);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}



#ry .swiper-button-next {
	right: 0;
	width: 55px;
    text-align: center;
	height: 55px;
    line-height: 55px;
    border: 2px solid #dedede;
    border-radius: 100%;
	--swiper-navigation-size: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    overflow: hidden;
    z-index: 10;
    font-size: 30px;
    transition: all .5s ease;
    outline: none;

}
#ry .swiper-button-prev {
	left:0;
    text-align: center;
	width: 55px;
    line-height: 55px;
	height: 55px;
    border: 2px solid #dedede;
    border-radius: 100%;
    --swiper-navigation-size: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    overflow: hidden;
    z-index: 10;
    font-size: 30px;
    transition: all .5s ease;
    outline: none;
    
}
#ry .swiper-button-prev:hover, #ry .swiper-button-next:hover { border: 2px solid #213E82; color: #fff; background: #213E82;}
/*  */

/* 新闻 */

.i-news-content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

.i-news-latest {
  width: 50%;
  position: relative;
}


.i-news-latest a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}


.i-news-latest a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: all .5s;
}

.i-news-latest .swiper-slide-active a img {
  opacity: 1;
}

.i-news-list {
  width: 50%;

  padding: 79px 8% 79px 4.75%;
  box-sizing: border-box;

}

.i-news-item {
  padding-bottom: 64px;

}

.i-news-item:last-child {
  padding-bottom: 0;
}

.i-news-item a {
  position: relative;
  display: block;
}

.i-news-date {
  color: #999;
  font-size: 14px;
  line-height: 1em;
}

.i-news-title {
  margin-top: 19px;
  color: #000;
  font-size: 24px;
  line-height: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all .5s;
}

.i-news-msg {
  display: none;
  height: 64px;
  margin: 15px 0 -4px;
  color: #999;
  font-size: 15px;
  line-height: 32px;
  overflow: hidden;
}

.i-news-link {
  position: absolute;
  top: 50%;
  right: -92px;
  transform: translate(50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0095BE;
  opacity: 0;
 
  transition: all .5s;
}

.i-news-link span {
  color: #fff;
  font-size: 24px;

}

.i-news-item:hover .i-news-title,
.i-news-item.on .i-news-title {
  color: #0095BE;
}

.i-news-item:hover .i-news-msg,
.i-news-item.on .i-news-msg {
  display: block;
}

.i-news-item:hover .i-news-link,
.i-news-item.on .i-news-link {
  opacity: 1;
}
/*  */
.fot_bg { background: url(../images/ft.jpg) no-repeat center;  background-attachment: fixed;  background-size: cover; margin-top: 20px; }
.more_btn3 { display: block; margin-top: 30px;  width: 100%; width: 150px; font-size: 14px; height: 45px; text-align: center; color: #fff; border: 1px solid #fff; line-height: 45px; display: block;}
.more_btn3:hover { background: #0095BE;}

/*底部footer*/
.footer {
  background: url(../images/fbg.jpg) no-repeat;
  background-size: cover;


}

.foot {
  padding: 70px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.foot b {
  font-size: 18px;
  color: #333;

  text-transform: uppercase;
  margin-bottom: 32px;
}

.foot span {
  color: #666;
  font-size: 20px;
  font-weight: bold;
  padding-right: 9px;
}

.foot .ft-nav {
  width: 75%;

}

.foot .ft-nav .ft-nav-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  color: #333;
}
.foot .ft_logo { width: 20%;}
.foot .ft_logo p { font-size: 16px; margin-top: 30px; color: #999;}
.foot .ft_logo b{ display: block; margin-top: 25px; font-size: 30px; font-weight: normal;}
.foot .ft_logo b span { font-size: 30px; color: #0095BE; font-weight: bold;}
.foot .ft-nav .ft-nav-list dl:nth-child(1) {
  width: 25%
}

.foot .ft-nav .ft-nav-list dl:nth-child(2) {
  width: 42%
}

.foot .ft-nav .ft-nav-list dl:nth-child(3) {
  width: 20%
}

.foot .ft-nav .ft-nav-list dl:first-child dd {
  display: flex;
  flex-wrap: wrap;
}

.foot .ft-nav .ft-nav-list dl:last-child dd {
  display: flex;
  flex-wrap: wrap;
}





.foot .ft-nav .ft-nav-list dl:first-child dd a {
  width: 50%;
}

.foot .ft-nav .ft-nav-list dl:nth-child(2) dd {
  display: flex;
  flex-wrap: wrap;

}

.foot .ft-nav .ft-nav-list dl:nth-child(2) dd p {
  width: 100%;
  margin-bottom: 10px;

}


.foot .ft-nav .ft-nav-list dt {
  font-size: 20px;
  color: #333;

  font-weight: normal;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}



.foot .ft-nav .ft-nav-list dd a {
  color: #666;
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
}

.foot .ft-nav .ft-nav-list dd p {
  color:#666;
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
}



.foot .ft-nav .ft-nav-list dd a:hover {
  color: #0095BE
}

.copyright {
  padding: 40px 0;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);

  border-top: 1px solid rgba(0, 0, 0, .07);
}

.copyright a {
  color: rgba(0, 0, 0, 0.6);
}



/*返回顶部*/
.scroll {

  position: fixed;
  right: 30px;
  bottom: 70px;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  z-index: 99999;
  color: #fff;
}

.scroll a p {
  color: #fff;
  margin-top: 5px;
}

.scroll .return {

  transform: scaleY(0);
  transition: 0.5s;
  background-color: #0095BE;
  width: 80px;
  height: 80px;
  padding-top: 10px;
  border-radius: 5px;


}

.scroll .active {
  transform: scale(1);
}


